home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BMUG PD-ROM B4
/
PD-ROM B4.iso
/
Utilities
/
Text and Speech
/
BBEdit 2.2.2
/
ToolServer Support
/
Copy to MPW folder
/
BBEditStartup
< prev
next >
Wrap
Text File
|
1992-09-02
|
1KB
|
49 lines
# BBEditStartup
# Version 2.2d1
# March 25, 1992
# This script is invoked by BBEdit when it establishes the ToolServer
# connection. It should reside in the same folder as ToolServer.
#############################################################################
# The commands in this section MUST NOT BE ALTERED, or the link between
# BBEdit and ToolServer will not function correctly.
Export BBEditNBPObj
Export BBEditNBPType
Export BBEditNBPZone
Export BBEditPPCPortName
Export BBEditPPCClientName
Export BBEditIsRemote
Export BBEditExists
unalias File
if `Exists "{MPW}"Scripts:File` == ""
echo '### The "File" command may not work properly, because the'
echo '### "File" script is missing from your Scripts folder.'
echo
echo '### Also make sure that you have installed the custom "Line"'
echo '### script in your Scripts folder.'
alias File Target
end
if `Exists "{MPW}"Tools:RBBEdit` == ""
echo
echo '### The "RBBEdit" tool is missing from your Tools folder.'
echo '### Until you install it, the File and Line commands will'
echo '### not work.'
echo
echo '### Also make sure that you install the custom File and Line'
echo '### scripts in your Scripts folder'
end
For __Startup__i in `(Files "{ShellDirectory}"BBEditStartup•≈ || Set Status 0) ≥ dev:null`
Execute "{__Startup__i}"
End
Unset __Startup__i
#############################################################################